home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / sdcte.c < prev    next >
C/C++ Source or Header  |  1995-11-14  |  5KB  |  166 lines

  1. /* Copyright (C) 1994 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* sdcte.c */
  20. /* DCT encoding filter stream */
  21. #include "memory_.h"
  22. #include "stdio_.h"
  23. #include "jpeglib.h"
  24. #include "jerror.h"
  25. #include "gdebug.h"
  26. #include "strimpl.h"
  27. #include "sdct.h"
  28. #include "sjpeg.h"
  29.  
  30. #define ss ((stream_DCT_state *)st)
  31.  
  32. /* ------ DCTEncode ------ */
  33.  
  34. /* JPEG destination manager procedures */
  35. private void
  36. dcte_init_destination(j_compress_ptr cinfo)
  37. {
  38. }
  39. private boolean
  40. dcte_empty_output_buffer(j_compress_ptr cinfo)
  41. {    return FALSE;
  42. }
  43. private void
  44. dcte_term_destination(j_compress_ptr cinfo)
  45. {
  46. }
  47.  
  48. /* Initialize DCTEncode filter */
  49. private int
  50. s_DCTE_init(stream_state *st)
  51. {    struct jpeg_destination_mgr *dest = &ss->data.compress->destination;
  52.     dest->init_destination = dcte_init_destination;
  53.     dest->empty_output_buffer = dcte_empty_output_buffer;
  54.     dest->term_destination = dcte_term_destination;
  55.     ss->data.compress->cinfo.dest = dest;
  56.     ss->phase = 0;
  57.     return 0;
  58. }
  59.  
  60. /* Process a buffer */
  61. private int
  62. s_DCTE_process(stream_state *st, stream_cursor_read *pr,
  63.   stream_cursor_write *pw, bool last)
  64. {    jpeg_compress_data *jcdp = ss->data.compress;
  65.     struct jpeg_destination_mgr *dest = jcdp->cinfo.dest;
  66.     dest->next_output_byte = pw->ptr + 1;
  67.     dest->free_in_buffer = pw->limit - pw->ptr;
  68.     switch ( ss->phase )
  69.     {
  70.     case 0:                /* not initialized yet */
  71.         if ( gs_jpeg_start_compress(ss, TRUE) < 0 )
  72.             return ERRC;
  73.         pw->ptr = dest->next_output_byte - 1;
  74.         ss->phase = 1;
  75.         /* falls through */
  76.     case 1:                /* initialized, Markers not written */
  77.         if ( pw->limit - pw->ptr < ss->Markers.size )
  78.             return 1;
  79.         memcpy(pw->ptr + 1, ss->Markers.data, ss->Markers.size);
  80.         pw->ptr += ss->Markers.size;
  81.         ss->phase = 2;
  82.         /* falls through */
  83.     case 2:                /* still need to write Adobe marker */
  84.         if ( ! ss->NoMarker )
  85.         {    static const byte Adobe[] = {
  86.               0xFF, JPEG_APP0+14, 0, 14, /* parameter length */
  87.               'A', 'd', 'o', 'b', 'e',
  88.               0, 100, /* Version */
  89.               0, 0,    /* Flags0 */
  90.               0, 0,    /* Flags1 */
  91.               0    /* ColorTransform */
  92.             };
  93. #define ADOBE_MARKER_LEN sizeof(Adobe)
  94.             if ( pw->limit - pw->ptr < ADOBE_MARKER_LEN )
  95.                 return 1;
  96.             memcpy(pw->ptr + 1, Adobe, ADOBE_MARKER_LEN);
  97.             pw->ptr += ADOBE_MARKER_LEN;
  98.             *pw->ptr = ss->ColorTransform;
  99. #undef ADOBE_MARKER_LEN
  100.         }
  101.         dest->next_output_byte = pw->ptr + 1;
  102.         dest->free_in_buffer = pw->limit - pw->ptr;
  103.         ss->phase = 3;
  104.         /* falls through */
  105.     case 3:                /* markers written, processing data */
  106.         while ( jcdp->cinfo.image_height > jcdp->cinfo.next_scanline )
  107.         {    int written;
  108.             /*
  109.              * The data argument for jpeg_write_scanlines is
  110.              * declared as a JSAMPARRAY.  There is no corresponding
  111.              * const type, so we must remove const from the
  112.              * argument that we are passing here.  (Tom Lane of IJG
  113.              * judges that providing const analogues of the
  114.              * interface types wouldn't be worth the trouble.)
  115.              */
  116.             /*const*/ byte *samples = (byte *)(pr->ptr + 1);
  117.             if ( (uint)(pr->limit - pr->ptr) < ss->scan_line_size )
  118.             {    if ( last )
  119.                     return ERRC;    /* premature EOD */
  120.                 return 0;        /* need more data */
  121.             }
  122.             written = gs_jpeg_write_scanlines(ss, &samples, 1);
  123.             if ( written < 0 )
  124.                 return ERRC;
  125.             pw->ptr = dest->next_output_byte - 1;
  126.             if ( !written )
  127.                 return 1;        /* output full */
  128.             pr->ptr += ss->scan_line_size;
  129.         }
  130.         ss->phase = 4;
  131.         /* falls through */
  132.     case 4:                /* all data processed, finishing */
  133.         /* jpeg_finish_compress can't suspend, so make sure
  134.          * it has plenty of room to write the last few bytes.
  135.          */
  136.         if ( pw->limit - pw->ptr < 100 )
  137.             return 1;
  138.         if ( gs_jpeg_finish_compress(ss) < 0 )
  139.             return ERRC;
  140.         pw->ptr = dest->next_output_byte - 1;
  141.         ss->phase = 5;
  142.         /* falls through */
  143.     case 5:                /* we are DONE */
  144.         return EOFC;
  145.     }
  146.     /* Default case can't happen.... */
  147.     return ERRC;
  148. }
  149.  
  150. /* Release the stream */
  151. private void
  152. s_DCTE_release(stream_state *st)
  153. {    gs_jpeg_destroy(ss);
  154.     gs_free(ss->data.compress, 1, sizeof(jpeg_compress_data),
  155.         "s_DCTE_release");
  156.     /* Switch the template pointer back in case we still need it. */
  157.     st->template = &s_DCTE_template;
  158. }
  159.  
  160. /* Stream template */
  161. const stream_template s_DCTE_template =
  162. {    &st_DCT_state, s_DCTE_init, s_DCTE_process, 1000, 4000, s_DCTE_release
  163. };
  164.  
  165. #undef ss
  166.